From d2f97d17d49b657b19ebc3e40bcb34276ca7f2e8 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 5 Aug 2005 09:02:58 +0000 Subject: [PATCH] The C interface no longer has a priority arg, but the python interface still takes one (and just doesn't use it). Noone uses it anyway, so nothing should break by taking it away. Signed-off-by: Rusty Russell --- tools/python/xen/lowlevel/xs/xs.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/python/xen/lowlevel/xs/xs.c b/tools/python/xen/lowlevel/xs/xs.c index 01e882c646..d0c054c2d7 100644 --- a/tools/python/xen/lowlevel/xs/xs.c +++ b/tools/python/xen/lowlevel/xs/xs.c @@ -343,7 +343,6 @@ static PyObject *xspy_set_permissions(PyObject *self, PyObject *args, #define xspy_watch_doc "\n" \ "Watch a path, get notifications when it changes.\n" \ " path [string] : xenstore path.\n" \ - " priority [int] : watch priority (default 0).\n" \ " token [string] : returned in watch notification.\n" \ "\n" \ "Returns: [int] 0 on success.\n" \ @@ -352,10 +351,9 @@ static PyObject *xspy_set_permissions(PyObject *self, PyObject *args, static PyObject *xspy_watch(PyObject *self, PyObject *args, PyObject *kwds) { - static char *kwd_spec[] = { "path", "priority", "token", NULL }; + static char *kwd_spec[] = { "path", "token", NULL }; static char *arg_spec = "s|is"; char *path = NULL; - int priority = 0; char *token = ""; struct xs_handle *xh = xshandle(self); @@ -365,7 +363,7 @@ static PyObject *xspy_watch(PyObject *self, PyObject *args, PyObject *kwds) if (!xh) goto exit; if (!PyArg_ParseTupleAndKeywords(args, kwds, arg_spec, kwd_spec, - &path, &priority, &token)) + &path, &token)) goto exit; xsval = xs_watch(xh, path, token); val = pyvalue_int(xsval); -- 2.30.2